home *** CD-ROM | disk | FTP | other *** search
/ Mac Format 1995 June / MacFormat 25.iso / Shareware City / Developers / OutOfPhase1.1 Source / OutOfPhase Folder / CheckNameUniqueness.h < prev    next >
Text File  |  1994-07-22  |  789b  |  36 lines

  1. /* CheckNameUniqueness.h */
  2.  
  3. #ifndef Included_CheckNameUniqueness_h
  4. #define Included_CheckNameUniqueness_h
  5.  
  6. /* CheckNameUniqueness module depends on */
  7. /* MiscInfo.h */
  8. /* Audit */
  9. /* Debug */
  10. /* Definitions */
  11. /* MainWindowStuff */
  12. /* Memory */
  13. /* SampleList */
  14. /* AlgoSampList */
  15. /* WaveTableList */
  16. /* AlgoWaveTableList */
  17. /* InstrList */
  18. /* SampleObject */
  19. /* AlgoSampObject */
  20. /* WaveTableObject */
  21. /* AlgoWaveTableObject */
  22. /* InstrObject */
  23. /* Array */
  24. /* DataMunging */
  25. /* Alert */
  26.  
  27. /* forwards */
  28. struct MainWindowRec;
  29.  
  30. /* this checks all of the objects to make sure that names are unique */
  31. /* it returns True if they are, or returns False and presents a warning dialog */
  32. /* if they aren't unique */
  33. MyBoolean                        CheckNameUniqueness(struct MainWindowRec* MainWindow);
  34.  
  35. #endif
  36.